home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / sgml / msdos / sgml07 / msgcat.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-14  |  307 b   |  17 lines

  1.  
  2. #ifdef HAVE_CAT
  3. #include <nl_types.h>
  4. #else
  5. typedef UNIV nl_catd;
  6. #endif
  7.  
  8. #ifdef USE_PROTOTYPES
  9. nl_catd catopen(char *, int);
  10. int catclose(nl_catd);
  11. char *catgets(nl_catd, int, int, char *);
  12. #else /* not USE_PROTOTYPES */
  13. nl_catd catopen();
  14. int catclose();
  15. char *catgets();
  16. #endif /* not USE_PROTOTYPES */
  17.